github.com/andybalholm/brotli.Writer.last_insert_len_ (field)

10 uses

	github.com/andybalholm/brotli (current package)
		encode.go#L85: 	last_insert_len_    uint
		encode.go#L615: 	s.last_insert_len_ = 0
		encode.go#L833: 	if len(s.commands) != 0 && s.last_insert_len_ == 0 {
		encode.go#L839: 		createZopfliBackwardReferences(uint(bytes), uint(wrapped_last_processed_pos), data, uint(mask), &s.params, s.hasher_.(*h10), s.dist_cache_[:], &s.last_insert_len_, &s.commands, &s.num_literals_)
		encode.go#L842: 		createHqZopfliBackwardReferences(uint(bytes), uint(wrapped_last_processed_pos), data, uint(mask), &s.params, s.hasher_, s.dist_cache_[:], &s.last_insert_len_, &s.commands, &s.num_literals_)
		encode.go#L844: 		createBackwardReferences(uint(bytes), uint(wrapped_last_processed_pos), data, uint(mask), &s.params, s.hasher_, s.dist_cache_[:], &s.last_insert_len_, &s.commands, &s.num_literals_)
		encode.go#L869: 	if s.last_insert_len_ > 0 {
		encode.go#L870: 		s.commands = append(s.commands, makeInsertCommand(s.last_insert_len_))
		encode.go#L871: 		s.num_literals_ += s.last_insert_len_
		encode.go#L872: 		s.last_insert_len_ = 0